home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Disc to the Future 2
/
Disc to the Future Part II Programmer's Reference (Wayzata Technology)(6013)(1992).bin
/
MAC
/
MPW_TOOL
/
TOOLS
/
TOOLS_WI
/
ICON_8
/
H_FOLDER
/
HEADER.H
< prev
next >
Wrap
Text File
|
1990-03-02
|
761b
|
21 lines
/*
* Interpreter code file header - this is written at the start of
* an icode file after the start-up program.
*/
struct header {
word hsize; /* size of interpreter code */
word trace; /* initial value of &trace */
word records; /* location of record blocks */
word ftab; /* location of record/field table */
word fnames; /* location of names of fields */
word globals; /* location of global variables */
word gnames; /* location of names of globals */
word statics; /* location of static variables */
word strcons; /* location of identifier table */
word filenms; /* location of ipc/file name table */
word linenums; /* location of ipc/line number table */
word config[16]; /* icode version */
};